home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / kewlpo1a / frmnewke.frm (.txt) < prev    next >
Visual Basic Form  |  1999-10-21  |  1KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form frmNewKey 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Please enter your new key for:"
  5.    ClientHeight    =   720
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   4785
  9.    ControlBox      =   0   'False
  10.    DrawMode        =   6  'Mask Pen Not
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   720
  15.    ScaleWidth      =   4785
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.Label lblKeyName 
  18.       Alignment       =   2  'Center
  19.       Caption         =   "P1 Move Left"
  20.       BeginProperty Font 
  21.          Name            =   "MS Sans Serif"
  22.          Size            =   8.25
  23.          Charset         =   0
  24.          Weight          =   700
  25.          Underline       =   0   'False
  26.          Italic          =   0   'False
  27.          Strikethrough   =   0   'False
  28.       EndProperty
  29.       Height          =   375
  30.       Left            =   0
  31.       TabIndex        =   0
  32.       Top             =   120
  33.       Width           =   4695
  34.    End
  35. Attribute VB_Name = "frmNewKey"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  41.     frmConfigurations.GetKey KeyCode
  42.     Unload Me
  43. End Sub
  44.